home *** CD-ROM | disk | FTP | other *** search
- class SharedObject
- {
- var data // Containing attributes assigned to the "data" property of a shared object. These attributes are saved if the object is persistent.
-
- function clear() // Clears all of the data from the shared object and deletes the shared object from the disk.
- function flush(minimumDiskSpace) // Writes a locally persistent shared object to a local file.
- function getLocal(objectName, localPath) // Returns a reference to a locally persistent shared object that is available only to the current client.
- function getSize() // Gets the current size of the shared object.
-
- function onStatus() // Invoked every time an error, warning, or informational note is posted for a shared object.
- }
-